From fd3a649380e62ac41249858a76006569b519009b Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Sun, 27 Nov 2005 01:28:11 +0000 Subject: [PATCH] Remove keyword from call to xc.domain_setmaxmem; keyword support for this call was removed with changeset 7955:f72da8799418. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendDomain.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/python/xen/xend/XendDomain.py b/tools/python/xen/xend/XendDomain.py index 48efcf7370..4e76acfdbe 100644 --- a/tools/python/xen/xend/XendDomain.py +++ b/tools/python/xen/xend/XendDomain.py @@ -480,8 +480,7 @@ class XendDomain: dominfo = self.domain_lookup(domid) maxmem = int(mem) * 1024 try: - return xc.domain_setmaxmem(dominfo.getDomid(), - maxmem_kb = maxmem) + return xc.domain_setmaxmem(dominfo.getDomid(), maxmem) except Exception, ex: raise XendError(str(ex)) -- 2.30.2